All Packages  Class Hierarchy  This Package  Previous  Next  Index

Interface com.apple.alpha.app.WindowDelegate

public interface WindowDelegate
This interface wraps the Objective-C category defining delegate methods of the NSWindow class. The methods in this interface are delegate methods. This interface is exposed in Java for documentation purposes, since one is not required to implement this interface. Your class may implement one or more of these methods, as needed. Only those methods implemented will be called.


Method Index

 o windowShouldClose(Object)
A wrapper for the - windowShouldClose: Objective-C instance method implemented by delegates of the Window class (known as the NSWindow Objective-C class).
 o windowShouldZoom(Window, Rect)
A wrapper for the - windowShouldZoom:toFrame: Objective-C instance method implemented by delegates of the Window class (known as the NSWindow Objective-C class).
 o windowWillResize(Window, Size)
A wrapper for the - windowWillResize:toSize: Objective-C instance method implemented by delegates of the Window class (known as the NSWindow Objective-C class).
 o windowWillReturnFieldEditor(Window, Object)
A wrapper for the - windowWillReturnFieldEditor:toObject: Objective-C instance method implemented by delegates of the Window class (known as the NSWindow Objective-C class).
 o windowWillUseStandardFrame(Window, Rect)
A wrapper for the - windowWillUseStandardFrame:defaultFrame: Objective-C instance method implemented by delegates of the Window class (known as the NSWindow Objective-C class).

Methods

 o windowShouldClose
 public abstract boolean windowShouldClose(Object sender)
A wrapper for the - windowShouldClose: Objective-C instance method implemented by delegates of the Window class (known as the NSWindow Objective-C class).

 o windowWillReturnFieldEditor
 public abstract Object windowWillReturnFieldEditor(Window sender,
                                                    Object client)
A wrapper for the - windowWillReturnFieldEditor:toObject: Objective-C instance method implemented by delegates of the Window class (known as the NSWindow Objective-C class).

 o windowWillResize
 public abstract Size windowWillResize(Window sender,
                                       Size frameSize)
A wrapper for the - windowWillResize:toSize: Objective-C instance method implemented by delegates of the Window class (known as the NSWindow Objective-C class).

 o windowWillUseStandardFrame
 public abstract Rect windowWillUseStandardFrame(Window window,
                                                 Rect newFrame)
A wrapper for the - windowWillUseStandardFrame:defaultFrame: Objective-C instance method implemented by delegates of the Window class (known as the NSWindow Objective-C class).

 o windowShouldZoom
 public abstract boolean windowShouldZoom(Window window,
                                          Rect newFrame)
A wrapper for the - windowShouldZoom:toFrame: Objective-C instance method implemented by delegates of the Window class (known as the NSWindow Objective-C class).


All Packages  Class Hierarchy  This Package  Previous  Next  Index